home *** CD-ROM | disk | FTP | other *** search
/ Super Games Pak / Super Games Pak (1991)(Odyssey)[!][compilation].iso / devs / mountlist < prev    next >
Text File  |  1991-05-16  |  4KB  |  151 lines

  1.  
  2. /* IVS Drive definition
  3.    SEAGATE  ST157N 
  4.  
  5.    This entry is only used in conjunction with the MOUNT command
  6.    It is not used for AUTO-BOOTING devices. */
  7.  
  8. DH0:    Device = IVS_SCSI.device
  9.     Unit = 1
  10.     Flags = 0
  11.     Surfaces = 6
  12.     BlocksPerTrack = 26
  13.     Reserved = 2
  14.     Interleave = 0
  15.     LowCyl = 2  ;  HighCyl = 599 /* of 599 */
  16.     Mount = 1
  17.     Buffers = 20
  18.     Stacksize = 4000        /* Required for FFS */
  19.     GlobVec = -1            /* Required for FFS */
  20.     FileSystem = l:FastFileSystem    /* Required for FFS */
  21.     DosType = 0x444F5301        /* Required for FFS */
  22. #
  23.  
  24. /* MountList for V1.3 */
  25.  
  26. /*  Mount Entry for the new Console Handler */
  27.  
  28. NEWCON: 
  29.     Handler = L:Newcon-Handler
  30.     Priority = 5
  31.     StackSize = 1000
  32. #
  33.  
  34. /* This is an example of a non-filing system mount using a handler written
  35.    in C.
  36. */
  37.  
  38. SPEAK:     
  39.     Handler = L:Speak-Handler
  40.     Stacksize = 6000
  41.     Priority = 5
  42.     GlobVec = -1
  43. #
  44.  
  45. /*  This is an example of an alternative type of non-filing device mount,
  46.     used to mount the non-buffered serial handler
  47. */
  48.  
  49. AUX:
  50.     Handler = L:Aux-Handler
  51.     Stacksize = 1000
  52.     Priority = 5
  53. #
  54. /*  This is a non-filing system device */
  55.  
  56. PIPE:      
  57.     Handler = L:Pipe-Handler
  58.     Stacksize = 6000
  59.     Priority = 5
  60.     GlobVec = -1
  61. #
  62.  
  63. /* This is an example of a mount list entry for using the recoverable 
  64.    ram disk.  Depending on the amount of memory you wish to devote to
  65.    it, you may want to change the HighCyl value.
  66. */
  67.  
  68. RAD:       Device = ramdrive.device
  69.            Unit   = 0
  70.            Flags  = 0
  71.            Surfaces  = 2
  72.            BlocksPerTrack = 11
  73.            Reserved = 2
  74.            Interleave = 0
  75.            LowCyl = 0  ;  HighCyl = 21
  76.            Buffers = 5
  77.            BufMemType = 1
  78. #
  79.  
  80. /* Mount a 5.25" disk drive to be mounted as DF2: */
  81.  
  82. DF2:       Device = trackdisk.device
  83.            Unit   = 2
  84.            Flags  = 1
  85.            Surfaces  = 2
  86.            BlocksPerTrack = 11
  87.            Reserved = 2
  88.            Interleave = 0
  89.            LowCyl = 0  ;  HighCyl = 39
  90.            Buffers = 20
  91.            BufMemType = 3
  92. #
  93.  
  94. /* An example mount entry using the fast file system with a partition
  95.    of the hard disk using the 2090 disk controller.  PREP has been
  96.    used to create the first partition (up to cylinder 20).  The second
  97.    partition is MOUNTed, using the following entry:
  98.    NOTE: Some hard disk drivers require more stack than specified here.
  99.    Some may required less.
  100.    (The hard disk is not included; this is only an example.)
  101. */
  102.  
  103. FAST:
  104.     Device = hddisk.device
  105.     FileSystem = l:FastFileSystem
  106.     Unit   = 1
  107.     Flags  = 0
  108.     Surfaces  = 4
  109.     BlocksPerTrack = 17
  110.     Reserved = 2
  111.     Interleave = 0
  112.     LowCyl = 21  ;  HighCyl = 800
  113.     Buffers = 30
  114.     GlobVec = -1
  115.     BufMemType = 1
  116.     Mount = 1
  117.     DosType = 0x444F5301
  118.     StackSize = 4000
  119. #
  120.  
  121. /* Let's say you have an A2000 with an internal drive, and an external
  122.    drive, and you want to refer to the external drive as DF1: as well
  123.    as DF2:   Well, this MountList entry will do it for you.  This technique
  124.    can be extended to provide you with a drive A: and B: if you really
  125.    want.
  126. */
  127.  
  128. DF1:       Device = trackdisk.device
  129.            Unit   = 2
  130.            Flags  = 1
  131.            Surfaces  = 2
  132.            BlocksPerTrack = 11
  133.            Reserved = 2
  134.            Interleave = 0
  135.            LowCyl = 0  ;  HighCyl = 79
  136.            Buffers = 20
  137.            BufMemType = 3
  138. #
  139.  
  140. FF0:    Device = fmsdisk.device
  141.     Unit   = 0
  142.     Flags  = 1
  143.     Surfaces  = 2
  144.     BlocksPerTrack = 11
  145.     Reserved = 2
  146.     Interleave = 0
  147.     LowCyl = 0
  148.     HighCyl = 79
  149.     Buffers = 2
  150.     BufMemType = 0
  151. #